home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C++ / Applications / Argus TE 2.0 / Argus Libraries 2.0 / Argus Standards / ArgusAboutBalloons.r < prev    next >
Encoding:
Text File  |  1994-11-01  |  1.6 KB  |  69 lines  |  [TEXT/KAHL]

  1. /**********************************************************************
  2.  
  3.     Segment: ArgusAboutBalloons.r
  4.  
  5. ***********************************************************************/
  6.  
  7. /* THINK Rez resource format */
  8. #include <Types.r>
  9. #include <BalloonTypes.r>
  10.  
  11. resource 'hdlg' (599, "About Balloons", purgeable){
  12.   /* Header */
  13.   HelpMgrVersion,
  14.   0,                  /* start help with first item in DITL */
  15.   hmSaveBitsNoWindow, /* hmDefaultOptions or hmSaveBitsNoWindow */
  16.   0,                  /* balloon definition */
  17.   0,                  /* variation code or position code, reference
  18.                          IM: More Macintosh Toolbox p3-10 */
  19.   
  20.   /* Missing Component */
  21.   HMSkipItem {
  22.   },
  23.   
  24.   /* Help */
  25.   {
  26.     /* [1] */
  27.     HMStringREsItem { /* store help messages in STR# 500 */
  28.     { 0, 0 },         /* default tip location is { 0, 0 } */
  29.     { 0, 0, 0, 0 },   /* default alternate rectangle */
  30.     599, 1,           /* OK button */
  31.     0, 0,             /* never dimmed */
  32.     0, 0,             /* never checked */
  33.     0, 0              /* never marked */
  34.     },
  35.     
  36.     /* [2] */
  37.     HMStringREsItem {
  38.     { 0, 0 },
  39.     { 0, 0, 0, 0 },
  40.     599, 2,           /* Help button */
  41.     0, 0,
  42.     0, 0,
  43.     0, 0
  44.     },
  45.     
  46.     /* [3] */
  47.     HMSkipItem {      /* Picture text */
  48.     },
  49.  
  50.     /* [4] */
  51.     HMSkipItem {      /* Application name text */
  52.     },
  53.  
  54.     /* [5] */
  55.     HMSkipItem {      /* Application name text */
  56.     },
  57.   }
  58. };
  59.  
  60. resource 'STR#' (599, "About Dialog Help Strings") {
  61.   {
  62.   /* [1] */
  63.   "To dismiss dialog, click this button.";
  64.   /* [2] */
  65.   "To display help for this application, click this button.";
  66.   }
  67. };
  68.  
  69. // End of File